| Conditions | 4 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /* globals wpData */ |
||
| 18 | function showComponentScreenshot (layout, $wrapper) { |
||
| 19 | const componentName = firstToUpperCase(layout) |
||
| 20 | const image = `${wpData.templateDirectoryUri}/${wpData.components[componentName]}/screenshot.png` |
||
| 21 | const $wrapperContainer = $("<div class='flyntComponentScreenshot-imageWrapper'>").appendTo($wrapper) |
||
| 22 | |||
| 23 | getImage(image).done(function () { |
||
| 24 | $wrapperContainer.prepend(`<img class='flyntComponentScreenshot-image' src='${image}'>`) |
||
| 25 | }) |
||
| 26 | } |
||
| 27 | |||
| 45 |